home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / macros / latex209 / contrib / textyl / psrc / makefile < prev    next >
Makefile  |  1993-11-07  |  557b  |  24 lines

  1. #  Makefile for TeXtyl
  2. #    Tue May 26 1987    John S. Renner
  3. #  be sure to edit texpaths.h to reflect local directory conventions
  4. #    before compiling
  5. textyl: textyl.pas tylext.o tylext.h
  6.     /lib/cpp -P  textyl.pas textyl.p
  7.     pc -w  -c  textyl.p
  8.     rm -f textyl.p
  9.     pc  -o textyl textyl.o tylext.o
  10.  
  11. SRCS = textyl.pas.aa textyl.pas.ab textyl.pas.ac \
  12.     textyl.pas.ad textyl.pas.ae textyl.pas.af \
  13.     textyl.pas.ag textyl.pas.ah
  14.  
  15. textyl.pas: $(SRCS)
  16.     cat $(SRCS) > textyl.pas
  17.  
  18. tylext.o: tylext.c texpaths.h h00vars.h
  19.     cc -c tylext.c
  20.  
  21. clean:
  22.     /bin/rm  -f  *.o textyl.p
  23.  
  24.